home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20000824-20010305 / 000054_news@columbia.edu _Wed Oct 4 18:39:13 2000.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from watsun.cc.columbia.edu (watsun.cc.columbia.edu [128.59.39.2])
  3.     by uhaligani.cc.columbia.edu (8.9.3/8.9.3) with ESMTP id SAA12297
  4.     for <kermit.misc@cpunix.cc.columbia.edu>; Wed, 4 Oct 2000 18:39:07 -0400 (EDT)
  5. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  6.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id SAA22775
  7.     for <kermit.misc@watsun.cc.columbia.edu>; Wed, 4 Oct 2000 18:39:07 -0400 (EDT)
  8. Received: (from news@localhost)
  9.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id SAA26319
  10.     for kermit.misc@watsun.cc.columbia.edu; Wed, 4 Oct 2000 18:30:01 -0400 (EDT)
  11. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  12. From: "Steve" <steve@baus-systems.com>
  13. Subject: No Carrier
  14. Message-ID: <YaOC5.4391$bI6.264432@news1.giganews.com>
  15. Organization: Giganews.Com - Premium News Outsourcing
  16. Date: Wed, 04 Oct 2000 22:29:12 GMT
  17. To: kermit.misc@columbia.edu
  18.  
  19. I have software that runs on DOS computers that uses Kermit 3.15 to transfer
  20. files to a server running a DOS application under Windows 95 also using
  21. Kermit 3.15.  The DOS computer initiates everything, the connection, the
  22. file transfers, etc.  The files are either transferred locally using a
  23. serial cable or remotely over a modem.  Everything works fine.  We are
  24. trying to switch from 3.15 on the server to K95 to allow multiple transfers
  25. on the same server at a time and have created the server program using VB.
  26. It seems to work fine except over a modem.  After the DOS computer calls in
  27. and connects, the first thing it does is issue a FIN to reset the server in
  28. case the previous transfer did not go to completion.  In the K95 version
  29. over a modem, I always get a no carrier on the DOS computer immediately
  30. after the FIN as the modem on the server side appears to drop the
  31. connection.  I can tell the server did get the FIN and the DOS computer
  32. should pause for a couple of seconds before issuing the next command.
  33.  
  34. We are using a shell command to call K95 that looks like:
  35.  
  36. For the modem file transfer the .ini file looks like:
  37. set carrier off
  38. set port 1
  39. set speed 9600
  40. set incomplete discard
  41. set send packet 94
  42. set retry 60
  43. set flow xon/xoff
  44. set handshake none
  45. set duplex full
  46. output AT s0=1\13
  47. output AT s37=9\13
  48. server
  49. exit
  50.  
  51. The dial string we use on the DOS computer side is:
  52. output AT&F&C0&D1s37=9N0DT [phone number]\13
  53.  
  54. Any ideas on why I am dropping the line?  Any suggestions on better settings
  55. on either the server or DOS side?
  56.  
  57. Thanks,
  58. Steve
  59.  
  60.